home *** CD-ROM | disk | FTP | other *** search
- var ready = true;
- var url = document.location.href;
- var origWidth = window.innerWidth;
- var origHeight = window.innerHeight;
-
- function GetToken(str, token)
- {
- var idx = str.indexOf(token + '=');
- if (idx <= 0) return null;
- var argstr = str.substring(idx + token.length + 1);
- idx = argstr.indexOf('&');
- return idx >=0 ? argstr.substring(0, idx) : argstr;
- }
-
- function onUnload()
- {
- window.innerWidth = origWidth;
- window.innerHeight = origHeight;
- }
-
- function launch(redirect)
- {
- if (ready) {
- window.location = "/setup/savedata?launch=1&url=" + redirect;
- ready = false;
- }
- }
-